projects
/
openwrt
/
svn-archive
/
packages.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c8571df
)
start fluxbox if available - otherwise try matchbox
author
Jens Muecke
<
[email protected]
>
Fri, 16 May 2008 21:43:29 +0000
(21:43 +0000)
committer
Jens Muecke
<
[email protected]
>
Fri, 16 May 2008 21:43:29 +0000
(21:43 +0000)
SVN-Revision: 11156
XOrg/meta/xorg-server-essentials/files/xinitrc
patch
|
blob
|
history
diff --git
a/XOrg/meta/xorg-server-essentials/files/xinitrc
b/XOrg/meta/xorg-server-essentials/files/xinitrc
index c736374a8d3a8cd8c7eed8223c9668150d4bdf1e..dacb8a00b3003dbd08a5ed446a2a88d442566b60 100644
(file)
--- a/
XOrg/meta/xorg-server-essentials/files/xinitrc
+++ b/
XOrg/meta/xorg-server-essentials/files/xinitrc
@@
-3,8
+3,18
@@
if [ -x `which xsetroot` ]; then
xsetroot -solid green
fi
-BKGD_IM
AGE_PATH=
/usr/share/X11/bkgd-images/
+BKGD_IM
12429 /us
/usr/share/X11/bkgd-images/
if [ -x `which Esetroot` ]; then
Esetroot -scale ${BKGD_IMAGE_PATH}/default.png
fi
-fluxbox
+
+# starting window manager, if available
+if [ -x /usr/bin/fluxbox ]; then
+ /usr/bin/fluxbox &
+elif [ -x /usr/bin/matchbox-window-manager ]; then
+ /usr/bin/matchbox-window-manager &
+fi
+
+#starting shell
+/usr/bin/xterm
+